home *** CD-ROM | disk | FTP | other *** search
Text File | 1996-04-03 | 1.1 KB | 55 lines | [TEXT/MPS ] |
- // Copyright © 1989-96 by Apple Computer, Inc. All rights reserved.
- // UDemoText.h
-
- // This sample application demonstrates the breadth of alternatives
- // available when using the MacApp building-block "UTEView" for text-editing.
-
- #ifndef __UDEMOTEXT__
- #define __UDEMOTEXT__
-
- // DemoText
-
- #ifndef __UTEDOCUMENT__
- #include "UTEDocument.h"
- #endif
-
- // MacApp
-
- #if qPowerTalk
- #ifndef __UMAILINGAPPLICATION__
- #include "UMailingApplication.h"
- #endif
- #else
- #ifndef __UAPPLICATION__
- #include "UApplication.h"
- #endif
- #endif
-
- #ifndef __UTEVIEW__
- #include "UTEView.h"
- #endif
-
- const unsigned long kSignature = 'SS04'; // application signature
- const unsigned long kFileType = kTextFileType; // file-type code for saved disk files
-
- #if qPowerTalk
- class TDemoTextApplication : public TMailingApplication
- #else
- class TDemoTextApplication : public TApplication
- #endif
- {
- MA_DECLARE_CLASS;
-
- public:
- virtual ~TDemoTextApplication();
- // Destructor
-
- virtual void IDemoTextApplication(void);
- // Initialize the Application
-
- virtual TDocument *DoMakeDocument(CommandNumber itsCommandNumber, TFile* itsFile);
- // Launches a TTextDocument
- };
-
- #endif
-